iT邦幫忙

2023 iThome 鐵人賽

DAY 23
0
自我挑戰組

連續30天學習C#和ASP.NET系列 第 23

Day23 - 簡單介紹好玩の屬性

  • 分享至 

  • xImage
  •  
屬性 說明
BackColor 用於設定背景顏色。
BorderColor 用於設定邊框顏色。
BorderWidth 用於設定邊框寬度。
BorderStyle 用於設定邊框樣式。
Height 用於設定高度。
Width 用於設定寬度。

BackColor

  • 用 Label 控制項設定BackColor
<h1>BackColor</h1>
<asp:Label ID="Label1" runat="server" 
    BackColor="Yellow" Text="背景顏色"></asp:Label>

https://ithelp.ithome.com.tw/upload/images/20231003/20162273Ul9Qtx0fSP.jpg

執行の結果


https://ithelp.ithome.com.tw/upload/images/20231003/20162273yt5gj8nX5A.jpg

BorderColor & BorderWidth

  • 用 Label 控制項設定BorderColor & BorderWidth
<h1>BorderColor &  BorderWidth</h1>
<asp:Label ID="Label1" runat="server" 
    BorderWidth="2" BorderColor="Blue" Text="邊框顏色"></asp:Label>

https://ithelp.ithome.com.tw/upload/images/20231003/20162273wpz6Q5vRop.jpg

執行の結果


https://ithelp.ithome.com.tw/upload/images/20231003/20162273DbW7u68Mr5.jpg

BorderStyle

  • 用 Label 控制項設定BorderStyle
屬性 說明
Dashed 表示邊框以虛線的形式呈現。
Dotted 表示邊框以點線的形式呈現。
Double 表示邊框以雙線的形式呈現。
Groove 表示邊框呈現立體凹陷效果。
Inset 表示邊框呈現立體內陷效果。
None 表示控制項不顯示邊框。
Outset 表示邊框呈現立體突出效果。
Ridge 表示邊框呈現立體凸出效果。
Solid 表示邊框以實線的形式呈現。
<h1>BorderStyle</h1>
<asp:Label ID="Label1" runat="server"
    Text="Dashed" BorderStyle="Dashed"></asp:Label>
<asp:Label ID="Label2" runat="server"
    Text="Dotted" BorderStyle="Dotted"></asp:Label>
<asp:Label ID="Label3" runat="server"
    Text="Double" BorderStyle="Double"></asp:Label>
<asp:Label ID="Label4" runat="server"
    Text="Groove" BorderStyle="Groove"></asp:Label>
<asp:Label ID="Label5" runat="server"
    Text="Inset" BorderStyle="Inset"></asp:Label>
<asp:Label ID="Label6" runat="server"
    Text="None" BorderStyle="None"></asp:Label>
<asp:Label ID="Label7" runat="server"
    Text="Outset" BorderStyle="Outset"></asp:Label>
<asp:Label ID="Label8" runat="server"
    Text="Ridge" BorderStyle="Ridge"></asp:Label>
<asp:Label ID="Label9" runat="server"
    Text="Solid" BorderStyle="Solid"></asp:Label>

https://ithelp.ithome.com.tw/upload/images/20231003/201622733Hbw221pne.jpg

執行の結果


https://ithelp.ithome.com.tw/upload/images/20231003/20162273UbPLtErObB.jpg

Height & Width

  • 用 Button 控制項設定Height & Width
<h1>Height & Width</h1>
<asp:Button ID="Button1" runat="server" Text="Height" Height="50" />
<asp:Button ID="Button2" runat="server" Text="Width" Width="100"/>

https://ithelp.ithome.com.tw/upload/images/20231003/20162273gV9zj565RA.jpg

執行の結果


https://ithelp.ithome.com.tw/upload/images/20231003/2016227303YnI7fMuH.jpg

※以上資料如有錯誤請多指教

參考資料

書名:ASP.NET 4.6動態網頁程式設計技術實作:使用C#


上一篇
Day22 - 介紹ASP.NET
下一篇
Day24 - 一般控制項
系列文
連續30天學習C#和ASP.NET30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言